home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1990, 1991 by Michael Davidson.
- * All rights reserved.
- *
- * Permission to use, copy, modify, and distribute this software
- * and its documentation for any purpose and without fee is hereby
- * granted, provided that the above copyright notice appear in all
- * copies and that both that copyright notice and this permission
- * notice appear in supporting documentation.
- *
- * This software is provided "as is" without express or implied warranty.
- */
-
- #ifndef VGA_H
- #define VGA_H
-
- /*
- * vga.h - VGA registers
- */
-
- /*
- * VGA registers
- */
- #define VGA_SEQ_IDX 0x3c4 /* sequencer index */
- #define VGA_SEQ_DAT 0x3c5 /* sequencer data */
- #define SEQ_PLANE_SEL 0x02 /* plane select */
-
- #define VGA_MISC 0x3c2 /* misc register */
- #define VGA_CRTC_IDX 0x3d4 /* CRTC index */
- #define VGA_CRTC_DAT 0x3d5 /* CRTC data */
- #define VGA_ATTR 0x3c0 /* attribute controller */
- #define VGA_GFX_IDX 0x3ce /* grapics index */
- #define VGA_GFX_DAT 0x3cf /* graphics data */
-
- #endif /* VGA_H */
-